module CJJerky
{

    imports
    {
        Base
    }
    
    recipe Make Marinated Fish Jerky
    {
        keep [Recipe.GetItemTypes.SharpKnife]/MeatCleaver,
        keep Spatula/[Recipe.GetItemTypes.Spoon]/[Recipe.GetItemTypes.Fork],
	    keep Bowl,
        [Recipe.GetItemTypes.FishMeat];20,
        Aluminum,
        Salt;3,
        Pepper;1,
        Soysauce;3,
        SugarBrown;2,

        Result:CJFishJerkyRaw,
        NeedToBeLearn:true,
        Category:Cooking,
        Time:150,
        SkillRequired:Cooking=3,
        OnGiveXP:Recipe.OnGiveXP.Cooking3,
    }

    recipe Make Marinated Beef Jerky
    {
        keep [Recipe.GetItemTypes.SharpKnife]/MeatCleaver,
        keep Spatula/[Recipe.GetItemTypes.Spoon]/[Recipe.GetItemTypes.Fork],
	    keep Bowl,
        Steak;20,
        Aluminum,
        Salt;3,
        Pepper;1,
        Soysauce;3,
        SugarBrown;2,

        Result:CJBeefJerkyRaw,
        NeedToBeLearn:true,
        Category:Cooking,
        Time:150,
        SkillRequired:Cooking=3,
        OnGiveXP:Recipe.OnGiveXP.Cooking3,
    }

    recipe Make Marinated Game Jerky
    {
        keep [Recipe.GetItemTypes.SharpKnife]/MeatCleaver,
        keep Spatula/[Recipe.GetItemTypes.Spoon]/[Recipe.GetItemTypes.Fork],
	    keep Bowl,
        Rabbitmeat/Smallanimalmeat;20,
        Aluminum,
        Salt;3,
        Pepper;1,
        Soysauce;3,
        SugarBrown;2,

        Result:CJGameJerkyRaw,
        NeedToBeLearn:true,
        Category:Cooking,
        Time:150,
        SkillRequired:Cooking=3,
        OnGiveXP:Recipe.OnGiveXP.Cooking3,
    }

    recipe Make Marinated Poultry Jerky
    {
        keep [Recipe.GetItemTypes.SharpKnife]/MeatCleaver,
        keep Spatula/[Recipe.GetItemTypes.Spoon]/[Recipe.GetItemTypes.Fork],
	    keep Bowl,
        Chicken/Smallbirdmeat;20,
        Aluminum,
        Salt;3,
        Pepper;1,
        Soysauce;3,
        SugarBrown;2,

        Result:CJPoultryJerkyRaw,
        NeedToBeLearn:true,
        Category:Cooking,
        Time:150,
        SkillRequired:Cooking=4,
        OnGiveXP:Recipe.OnGiveXP.Cooking3,
    }

}